home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / forth / pfe-0.000 / pfe-0 / pfe-0.9.13 / src / config / SunOS / options.mk
Encoding:
Text File  |  1995-05-08  |  622 b   |  34 lines

  1. #
  2. # SunOS/options.mk ---    Part of Makefile, compiler options for SunOS.
  3. #
  4.  
  5. PREFIX    = /usr/local
  6. PFELIB    = $(PREFIX)/lib/pfe
  7. PFEHLP    = $(PFELIB)/help
  8.  
  9. # On my Sun SparcStation 10 running Solarix 2.3 pfe DOESN'T work and
  10. # I don't know exactly why. I guess it's a bug in longjmp on that system.
  11. # Others seem to have no problems with SunOS 4.3.
  12.  
  13. SYSTEM    = SunOS
  14.  
  15. CC    = gcc -pipe -Wall
  16. OPTIM    = -O2 -fomit-frame-pointer# -DUSE_REGS
  17. DEBUG    = -g -O
  18.  
  19. #CC    = /opt/SUNWspro/bin/CC
  20. #OPTIM    = -fast
  21. #DEBUG    = -O
  22.  
  23. CL    = $(CC)
  24. CPP    = $(CC) -E
  25.  
  26. STRIP    = -s
  27. OPTIONS    = -D_BSD
  28. TERM_O    = termunix$o
  29. SYS_O    = unix$o
  30. LFLAGS    = 
  31. LIBS    = -ltermcap -lm# -lucb
  32.  
  33.  
  34.